home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / shfileop / readme1.txt < prev    next >
Encoding:
Text File  |  1996-07-06  |  850 b   |  18 lines

  1. This demo shows some of the features of the Windows 95 API
  2. Specifically, it uses the SHFileOperation function. This code
  3. accompanies the Programming Techniques column (October Visual
  4. Basic Programmer's Journal).
  5.  
  6. By Jonathan Wood, SoftCircuits 1996 (http://www.softcircuits.com)
  7.  
  8. Notes:
  9.  - As explained in the October column, Visual Basic 4 cannot take
  10.    full advantage of SHFileOperation becuase of UDT-alignment
  11.    issues. Specifically, the SHFILEOPSTRUCT UDT cannot be declared
  12.    and constructed exactly as required by SHFileOperation and only
  13.    the first 5 members are valid. For example, SHFileOperation
  14.    shows the name of each file being processed unless you specify
  15.    FOF_SIMPLEPROGRESS. If this flag is specified, the function
  16.    takes a message in lpszProgressTitle. You cannot currently do
  17.    this from Visual Basic.
  18.